한국어
JWT 인증을 사용하여 로그인합니다.
cURL
curl --request POST \ --url https://your_a2_service/auth/jwt/login \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data 'client_id=<string>' \ --data 'client_secret=<string>' \ --data 'grant_type=<string>' \ --data 'password=<string>' \ --data scope= \ --data 'username=<string>'
200
example
{ "access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoiOTIyMWZmYzktNjQwZi00MzcyLTg2ZDMtY2U2NDJjYmE1NjAzIiwiYXVkIjoiZmFzdGFwaS11c2VyczphdXRoIiwiZXhwIjoxNTcxNTA0MTkzfQ.M10bjOe45I5Ncu_uXvOmVV8QxnL-nZfcH96U90JaocI", "token_type": "bearer"}
Successful Response
The response is of type object.
object
이 페이지가 도움이 되었나요?